home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global gCurrentSprite
- if length(field "name") > 15 then
- set gCurrentSprite to 3
- RunOff()
- end if
- if length(field "movie") > 15 then
- set gCurrentSprite to 4
- RunOff()
- end if
- end
-
- on mouseDown
- global gCurrentSprite
- if rollOver(3) then
- set gCurrentSprite to 3
- else
- if rollOver(4) then
- set gCurrentSprite to 4
- end if
- end if
- end
-
- on exitFrame
- go("Title")
- end
-